282228bafad66c280be93b59b44fb24f8be1e5cd,src/test/java/org/artifactory/client/SearchTest.java,SearchTest,testQuickSearchWithRightSingleLimit,#,30
Before Change
@Test
public void testQuickSearchWithRightSingleLimit() throws HttpResponseException {
List<String> results = artifactory.searches().repositories(REPO1_CACHE).search("junit");
assertJUnits(results);
}
After Change
@Test
public void testQuickSearchWithRightSingleLimit() throws HttpResponseException {
List<String> results = artifactory.searches().artifactsByName("junit").repositories(REPO1_CACHE).search();
assertJUnits(results);
}